home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Object.dxr / 00087.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  1.6 KB  |  60 lines

  1. global vscrollpos, hscrollpos, scrollline, zoompctsprite, vtotalscroll, htotalscroll, vmaxscroll, hmaxscroll
  2.  
  3. on initial
  4.   set scrollline to 25
  5.   set zoompctsprite to 2
  6.   set vscrollpos to abs(the top of sprite zoompctsprite)
  7.   set hscrollpos to abs(the left of sprite zoompctsprite)
  8.   set vtotalscroll to the height of member the memberNum of sprite zoompctsprite
  9.   set htotalscroll to the width of member the memberNum of sprite zoompctsprite
  10.   set vmaxscroll to vtotalscroll - (the stageBottom - the stageTop)
  11.   set hmaxscroll to htotalscroll - (the stageRight - the stageLeft)
  12.   puppetSprite(zoompctsprite, 1)
  13. end
  14.  
  15. on scrollup corner
  16.   set vscrollpos to vscrollpos - scrollline
  17.   if vscrollpos < 1 then
  18.     set vscrollpos to 1
  19.   end if
  20.   if voidp(corner) then
  21.     setscrollbox()
  22.   end if
  23. end
  24.  
  25. on scrolldown corner
  26.   set vscrollpos to vscrollpos + scrollline
  27.   if vscrollpos > vmaxscroll then
  28.     set vscrollpos to vmaxscroll
  29.   end if
  30.   if voidp(corner) then
  31.     setscrollbox()
  32.   end if
  33. end
  34.  
  35. on scrollleft corner
  36.   set hscrollpos to hscrollpos - scrollline
  37.   if hscrollpos < 1 then
  38.     set hscrollpos to 0
  39.   end if
  40.   if voidp(corner) then
  41.     setscrollbox()
  42.   end if
  43. end
  44.  
  45. on scrollright corner
  46.   set hscrollpos to hscrollpos + scrollline
  47.   if hscrollpos > hmaxscroll then
  48.     set hscrollpos to hmaxscroll
  49.   end if
  50.   if voidp(corner) then
  51.     setscrollbox()
  52.   end if
  53. end
  54.  
  55. on setscrollbox
  56.   set the cursor of sprite zoompctsprite to 200
  57.   set the locV of sprite zoompctsprite to (vtotalscroll / 2) - vscrollpos
  58.   set the locH of sprite zoompctsprite to (htotalscroll / 2) - hscrollpos
  59. end
  60.